.tag-hide {
    display: none !important;
}
.tag-show:not(:first-child) {
    -webkit-animation: scale-up-ver-top .9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-ver-top .9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@media (max-width: 767.98px) {
    .tag-pc, .tag-mosaique {
        display: none;
    }
    .tag-mobile {
        display: flex;
    }
}
@media (min-width: 768px) { 
    .tag-pc {
        display: flex;
    }
    .tag-mobile {
        display: none;
    }
    .tag-mosaique {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 20px;
    }
    .block1 {
        grid-row: 1 / 5;
        grid-column: 3 / 3;
        width: 100%;
        height: 100%;
        padding-left: 20px;
    }
    
    .block2 {
        grid-row: 1 / 3;
        grid-column: 1 / 3;
        width: 100%;
        height: 100%;
        padding-bottom: 10px;
    }
    
    .block3 {
        grid-row: 3 / 5;
        grid-column: 1 / 3;
        width: 100%;
        height: 100%;
        padding-top: 10px;
    }
    .sb {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .sb img {
        width: 100%;
        height: 100%;
    }
    .text-overlay {
        font-size: 20px;
        font-weight: 700;
    }
    /* .sb:hover .text-overlay {
        display: block;
        -webkit-animation: scale-up-ver-bottom .9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        animation: scale-up-ver-bottom .9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    }
    .sb:hover .text-overlay  {
        background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.8));
        display: flex;
        position: absolute;
        top: 0;
        margin: auto;
        align-items: center;
    } */
    .sb {
        position: relative;
        margin: auto;
        overflow: hidden;
    }
    .sb img {
        max-width: 100%;
        transition: all 0.6s;
        display: block;
        width: 100%;
        /* height: auto; */
        transform: scale(1);
    }
    .sb:hover img {
        transform: scale(1.2);
    }
}
/* ligne de séparation */
.ligne-separation-magazine {
    padding-left: 0;
    position: relative;
}
.ligne-separation-magazine h3 {
    background-color: white;
    padding-right: 1em;
    width: max-content;
}
.ligne-separation-magazine .ligne-separation-texte {
    background-color: white;
    padding-right: 1em;
    width: max-content;
}
.ligne-separation-magazine:after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.5em;
    border-top: 1px solid black;
    z-index: -1;
}
/**
 * ----------------------------------------
 * animation scale-up-bottom
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-bottom {
    0% {
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
        -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
    }
}
@keyframes scale-up-bottom {
    0% {
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
        -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
    }
}
/**
 * ----------------------------------------
 * animation scale-up-ver-bottom
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-ver-bottom {
    0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
                transform-origin: 0% 100%;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
                transform-origin: 0% 100%;
    }
}
@keyframes scale-up-ver-bottom {
    0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
                transform-origin: 0% 100%;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
                transform-origin: 0% 100%;
    }
}

/**
 * ----------------------------------------
 * animation scale-up-ver-top
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-ver-top {
    0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
    }
}
@keyframes scale-up-ver-top {
    0% {
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
    }
    100% {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
                transform-origin: 100% 0%;
    }
}
.date-publi {
    color: #696969;
    font-style: italic;
}